* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ddd;
}

.center {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #ddd;
  color: black;
}

.content {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #ddd;
}

#snap-btn {
  font-size: 20px;
  padding: 20px 40px 20px 70px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  background: url("../img/thanos.jpg") white 15px no-repeat;
  background-size: 40px;
  display: none;
}

.dust {
  position: absolute;
}

.button-image {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

#file-input {
  display: none;
}

#button-upload {
  cursor: pointer;
  display: block;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #232323;
  color: #fff;
  font-family: Calibri, sans-serif;
}

.center-credentials {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  width: 70%;
  font-size: 30px;
  display: block;
  text-align: center;
}

.char {
  font-size: 40px;
  height: 40px;
  animation: an 1s ease-out 1 both;
  display: inline-block;
}

@keyframes an {
  from {
    opacity: 0;
    transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
  }

  to {
    opacity: 1;
    transform: perspective(500px) translate3d(0, 0, 0);
  }
}

.mylink {
  position: absolute;
  z-index: 150;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: right;
  padding: .6rem;
}

.mylink a {
  font-family: Calibri;
  color: black;
  border-bottom: 1px solid #fff;
  opacity: .5;
  transition: opacity .3s;
  text-decoration: none
}

.mylink a:hover {
  opacity: 1
}

#text {
  font-size: 40px;
}

small { 
  font-size: 20px;
}